home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / kgamemisc.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-10-10  |  1.4 KB  |  46 lines

  1. /*
  2.     This file is part of the KDE games library
  3.     Copyright (C) 2001 Andreas Beckermann (b_mann@gmx.de)
  4.  
  5.     This library is free software; you can redistribute it and/or
  6.     modify it under the terms of the GNU Library General Public
  7.     License version 2 as published by the Free Software Foundation.
  8.  
  9.     This library is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.     Library General Public License for more details.
  13.  
  14.     You should have received a copy of the GNU Library General Public License
  15.     along with this library; see the file COPYING.LIB.  If not, write to
  16.     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  17.     Boston, MA 02110-1301, USA.
  18. */
  19. /*
  20.     $Id: kgamemisc.h 465369 2005-09-29 14:33:08Z mueller $
  21. */
  22. #ifndef __KGAMEMISC_H__
  23. #define __KGAMEMISC_H__
  24.  
  25. #include <qstring.h>
  26. #include <kdemacros.h>
  27. class KGameMiscPrivate;
  28. /**
  29.  * This class contains several (usually static) functions I really did not know
  30.  * a class for. If you know a class for any of these member s please drop one of
  31.  * the above copyright holders a mail (or just kde-games-devel@kde.org)
  32.  **/
  33. class KDE_EXPORT KGameMisc
  34. {
  35. public:
  36.     KGameMisc();
  37.     ~KGameMisc();
  38.     
  39.     static QString randomName();
  40.     
  41. private:
  42.     KGameMiscPrivate* d;
  43. };
  44.  
  45. #endif
  46.